

/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}


/* ====================================
Refrigerator Freezer Banner
====================================*/

 .freezer-banner-section{

    padding:90px 0;

    min-height:700px;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

background-image: url('/assets/images/IV-Room/banner-image.png');

    background-size:cover;

    background-position:center right;

    background-repeat:no-repeat;

}

/* Decorative Circle */
 
.freezer-banner-section::before{

    content:"";

    width:420px;

    height:420px;

    background:#ff3b3008;

    border-radius:50%;

    position:absolute;

    top:-180px;

    left:-180px;

}

/* Content */

 .freezer-banner-section .banner-content-wrapper{

    position:relative;

    z-index:2;

}

.freezer-banner-section .banner-sub-heading{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    color:#ff3b30;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.freezer-banner-section .banner-heading{

    font-size:56px;

    line-height:1.25;

    font-weight:600;

    color:#002964;

    margin-bottom:25px;

}

.freezer-banner-section .banner-heading span{

    color:#ff3b30;

}

.freezer-banner-section .banner-content{

    max-width:610px;

    font-size:18px;

    color:#646F88;

    line-height:1.8;

    margin-bottom:40px;

} 

/* Buttons */

.freezer-banner-section .banner-buttons{

    display:flex;

    gap:16px;

    margin-bottom:45px;

}

.freezer-banner-section .banner-buttons a{

    padding:15px 28px;

    border-radius:5px;

    text-decoration:none;  

    font-size:15px;

    font-weight:600;

    transition:.3s;
    

}

.freezer-banner-section .explore-btn{

    background:#ff3b30;

    color:#fff;

}

.freezer-banner-section .explore-btn:hover{

    background:#e02a20;

}

.freezer-banner-section .quote-btn{

    border:1px solid #ff3b30;

    color:#ff3b30;

    background:#fff;

}

.freezer-banner-section .quote-btn:hover{

    background:#ff3b30;

    color:#fff;

} 

/* Feature Boxes */

 .banner-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.banner-features .feature-box{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 20px;

    background:#fff;

    border:1px solid #E5EBF5;

    border-radius:10px;

    transition:.35s;

}

.banner-features .feature-box:hover{

    transform:translateY(-6px);

    border-color:#002964;

    box-shadow:0 18px 40px rgba(6,46,130,.08);

}

.banner-features .feature-box i{

    color:#ff3b30;

    font-size:18px;

}

.banner-features .feature-box span{

    font-size:15px;

    color:#002964;

    font-weight:500;

}

/* Responsive */

@media(max-width:991px){

.freezer-banner-section{

min-height:auto;

padding:80px 0;

background-position:center;

}

.freezer-banner-section .banner-heading{

font-size:42px;

}

.banner-features{

flex-direction:column;

}

.banner-features .feature-box{

width:100%;

}

.banner-buttons{

flex-wrap:wrap;

}

} 

/*====================================
USP Compliance Section Start
====================================*/

.usp-compliance-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.usp-compliance-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.usp-compliance-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 70px;
}

/* Content */

.usp-compliance-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.usp-compliance-section .section-heading {
    margin: 0 0 35px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.usp-compliance-section .section-heading span {
    display: block;
    color: #ff3b30;
}

/* Features */

.usp-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.usp-feature-item {
    position: relative;
    display: flex;
    min-height: 62px;
    padding: 14px 15px 14px 46px;
    align-items: center;
    color: #646f88;
    background: #ffffff;
    border: 1px solid #e1e9f5;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    transition: 0.3s ease;
}

.usp-feature-item::before {
    content: "✓";
    position: absolute;
    left: 16px;
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease;
}

.usp-feature-item:hover {
    color: #002964;
    border-color: rgba(0, 41, 100, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 41, 100, 0.08);
}

.usp-feature-item:hover::before {
    background: #ff3b30;
}

/* Cost Note */

.usp-cost-note {
    margin-top: 25px;
    padding: 18px 22px;
    color: #002964;
    background: rgba(255, 59, 48, 0.07);
    border-left: 4px solid #ff3b30;
    border-radius: 0 9px 9px 0;
    font-size: 16px;
    font-weight: 500;
}

.usp-cost-note strong {
    color: #ff3b30;
    font-weight: 700;
}

/* Monitor Panel */

.usp-monitor-panel {
    position: relative;
    padding: 25px;
    overflow: hidden;
    background: linear-gradient(145deg, #002964 0%, #073f89 100%);
    border-radius: 24px;
    box-shadow: 0 28px 65px rgba(0, 41, 100, 0.22);
}

.usp-monitor-panel::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    border: 40px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.usp-panel-heading {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.usp-panel-heading div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.usp-panel-heading > span {
    padding: 7px 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 11px;
    text-transform: uppercase;
}

.panel-live-dot {
    width: 9px;
    height: 9px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.17);
}

/* Monitor Image */

.usp-monitor-image {
    position: relative;
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8fbff;
    border-radius: 16px;
}

.usp-monitor-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    background: rgba(0, 41, 100, 0.08);
    border-radius: 50%;
    filter: blur(15px);
}

.usp-monitor-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 500px;
    max-width: 92%;
    height: auto;
    filter: drop-shadow(0 22px 24px rgba(0, 41, 100, 0.16));
    transition: 0.4s ease;
}

.usp-monitor-panel:hover .usp-monitor-image img {
    transform: translateY(-7px) scale(1.02);
}

/* Compliance Stats */

.usp-panel-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.usp-panel-stat {
    padding: 14px 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
}

.usp-panel-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.usp-panel-stat span {
    color: #cbdaf0;
    font-size: 11px;
    font-weight: 500;
}

/* Tablet */

@media (max-width: 991px) {
    .usp-compliance-section {
        padding: 80px 0;
    }

    .usp-compliance-section .container {
        padding: 0 25px;
    }

    .usp-compliance-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .usp-compliance-section .section-heading {
        font-size: 40px;
    }

    .usp-monitor-panel {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .usp-compliance-section {
        padding: 60px 0;
    }

    .usp-compliance-section .container {
        padding: 0 20px;
    }

    .usp-compliance-section .section-tag {
        font-size: 13px;
    }

    .usp-compliance-section .section-heading {
        margin-bottom: 28px;
        font-size: 32px;
    }

    .usp-feature-list {
        grid-template-columns: 1fr;
    }

    .usp-feature-item {
        min-height: 55px;
        font-size: 13px;
    }

    .usp-monitor-panel {
        padding: 15px;
        border-radius: 16px;
    }

    .usp-monitor-image {
        min-height: 270px;
    }

    .usp-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .usp-panel-stats {
        grid-template-columns: 1fr;
    }
}

/*====================================
USP Compliance Section End
====================================*/
/*====================================
Accuracy Section Start
====================================*/

.accuracy-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

.accuracy-section::before {
    content: "";
    position: absolute;
    top: -190px;
    left: -170px;
    width: 460px;
    height: 460px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.accuracy-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.accuracy-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 80px;
}

/* Main Content */

.accuracy-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.accuracy-section .section-heading {
    max-width: 700px;
    margin: 0 0 28px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.accuracy-section .section-heading span {
    display: block;
    color: #ff3b30;
}

.accuracy-content p {
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Buy Button */

.accuracy-buy-button {
    display: inline-flex;
    margin-top: 15px;
    padding: 14px 24px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 1px solid #ff3b30;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.accuracy-buy-button:hover {
    color: #ffffff;
    background: #002964;
    border-color: #002964;
    transform: translateY(-3px);
}

/* Accuracy Panel */

.accuracy-panel {
    position: relative;
    padding: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, #002964 0%, #073f89 100%);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 41, 100, 0.2);
}

.accuracy-panel::before {
    content: "";
    position: absolute;
    top: -75px;
    right: -75px;
    width: 220px;
    height: 220px;
    border: 35px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.accuracy-panel-heading {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.accuracy-live-dot {
    width: 10px;
    height: 10px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.17);
}

/* Accuracy Cards */

.accuracy-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 48px 1fr;
    padding: 18px;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: 0.3s ease;
}

.accuracy-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(7px);
}

.accuracy-card-number {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.accuracy-card-label {
    display: block;
    margin-bottom: 5px;
    color: #cbdaf0;
    font-size: 13px;
    font-weight: 500;
}

.accuracy-card strong {
    display: block;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

/* NIST Note */

.nist-note {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding: 15px;
    color: #002964;
    background: #ffffff;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

/* Tablet */

@media (max-width: 991px) {
    .accuracy-section {
        padding: 80px 0;
    }

    .accuracy-section .container {
        padding: 0 25px;
    }

    .accuracy-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .accuracy-section .section-heading {
        font-size: 40px;
    }

    .accuracy-panel {
        width: 100%;
        max-width: 650px;
        box-sizing: border-box;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .accuracy-section {
        padding: 60px 0;
    }

    .accuracy-section .container {
        padding: 0 20px;
    }

    .accuracy-wrapper {
        gap: 40px;
    }

    .accuracy-section .section-tag {
        font-size: 13px;
    }

    .accuracy-section .section-heading {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .accuracy-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .accuracy-buy-button {
        width: 100%;
        box-sizing: border-box;
    }

    .accuracy-panel {
        padding: 22px 17px;
        border-radius: 16px;
    }

    .accuracy-panel-heading {
        font-size: 15px;
    }

    .accuracy-card {
        grid-template-columns: 42px 1fr;
        padding: 15px;
        gap: 14px;
    }

    .accuracy-card-number {
        width: 42px;
        height: 42px;
    }

    .accuracy-card strong {
        font-size: 21px;
    }
}

/*====================================
Accuracy Section End
====================================*/

/*====================================
Quick Installation Section Start
====================================*/

.easy-install-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

.easy-install-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: #f4f8ff;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.easy-install-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Top Layout */

.easy-install-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 90px;
    margin-bottom: 60px;
}

/* Heading */

.easy-install-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.easy-install-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.easy-install-section .section-heading span {
    display: block;
    color: #ff3b30;
}

/* Heading Decoration */

.heading-decoration {
    display: flex;
    gap: 7px;
    margin-top: 25px;
}

.heading-decoration span {
    display: block;
    width: 8px;
    height: 8px;
    background: #d7e3f4;
    border-radius: 50%;
}

.heading-decoration span:first-child {
    width: 45px;
    background: #002964;
    border-radius: 10px;
}

.heading-decoration span:last-child {
    background: #ff3b30;
}

/* Description */

.easy-install-description {
    padding-left: 35px;
    border-left: 1px solid #dfe7f3;
}

.easy-install-description p {
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.easy-install-description p:last-child {
    margin-bottom: 0;
}

/* Feature Band */

.easy-install-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: #002964;
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(0, 41, 100, 0.16);
}

.easy-feature {
    position: relative;
    display: flex;
    min-height: 170px;
    padding: 30px 24px;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    box-sizing: border-box;
    transition: 0.35s ease;
}

.easy-feature:last-child {
    border-right: 0;
}

.easy-feature::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #ff3b30;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.easy-feature:hover {
    background: #073f89;
    transform: translateY(-6px);
}

.easy-feature:hover::after {
    transform: scaleX(1);
}

.feature-index {
    display: block;
    margin-bottom: 20px;
    color: #ff827a;
    font-size: 13px;
    font-weight: 700;
}

.easy-feature strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.easy-feature div > span {
    display: block;
    color: #c8d7ec;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

/* Tablet */

@media (max-width: 991px) {
    .easy-install-section {
        padding: 80px 0;
    }

    .easy-install-section .container {
        padding: 0 25px;
    }

    .easy-install-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .easy-install-section .section-heading {
        font-size: 40px;
    }

    .easy-install-description {
        padding-left: 25px;
    }

    .easy-install-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .easy-feature:nth-child(2) {
        border-right: 0;
    }

    .easy-feature:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
}

/* Mobile */

@media (max-width: 600px) {
    .easy-install-section {
        padding: 60px 0;
    }

    .easy-install-section::before {
        display: none;
    }

    .easy-install-section .container {
        padding: 0 20px;
    }

    .easy-install-layout {
        margin-bottom: 40px;
    }

    .easy-install-section .section-tag {
        font-size: 13px;
    }

    .easy-install-section .section-heading {
        font-size: 32px;
    }

    .easy-install-description {
        padding-left: 18px;
    }

    .easy-install-description p {
        font-size: 15px;
        line-height: 1.8;
    }

    .easy-install-features {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .easy-feature {
        min-height: auto;
        padding: 24px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .easy-feature:last-child {
        border-bottom: 0;
    }

    .feature-index {
        margin-bottom: 12px;
    }
}

/*====================================
Quick Installation Section End
====================================*/
/*====================================
IV Room Monitoring Section Start
====================================*/

.iv-monitor-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

.iv-monitor-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34%;
    height: 100%;
    background: #f3f7ff;
    clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}

.iv-monitor-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.iv-monitor-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

/* Image Visual */

.iv-monitor-visual {
    position: relative;
    padding: 0 25px 30px 0;
}

.iv-image-frame {
    position: relative;
    height: 510px;
    padding: 10px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 41, 100, 0.17);
    box-sizing: border-box;
}

.iv-image-frame::before {
    content: "";
    position: absolute;
    top: 25px;
    right: -25px;
    bottom: -25px;
    left: 25px;
    z-index: -1;
    background: #002964;
    border-radius: 22px;
}

.iv-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.iv-image-frame::after {
    content: "";
    position: absolute;
    inset: 10px;
    background: linear-gradient(
        to top,
        rgba(0, 41, 100, 0.52),
        transparent 50%
    );
    border-radius: 15px;
}

/* Image Label */

.iv-image-label {
    position: absolute;
    right: -20px;
    bottom: 30px;
    z-index: 3;
    display: flex;
    padding: 14px 18px;
    align-items: center;
    gap: 11px;
    color: #002964;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 41, 100, 0.16);
    font-size: 13px;
    font-weight: 600;
}

.iv-image-label span {
    width: 10px;
    height: 10px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.14);
}

.iv-monitor-index {
    position: absolute;
    top: -28px;
    left: -20px;
    z-index: 4;
    color: rgba(0, 41, 100, 0.1);
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
}

/* Content */

.iv-monitor-content {
    position: relative;
}

.iv-monitor-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.iv-monitor-section .section-heading {
    margin: 0 0 28px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.iv-monitor-section .section-heading span {
    color: #ff3b30;
}

.iv-monitor-content p {
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.iv-monitor-content p:last-child {
    margin-bottom: 0;
}

/* Alarm Panel */

.iv-alarm-panel {
    display: grid;
    grid-template-columns: 0.42fr 1.58fr;
    margin-top: 65px;
    overflow: hidden;
    background: #002964;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 41, 100, 0.14);
}

.iv-alarm-title {
    display: flex;
    padding: 28px 30px;
    align-items: center;
    gap: 17px;
    background: #ff3b30;
}

.alarm-signal {
    position: relative;
    display: block;
    min-width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.18),
        0 0 0 12px rgba(255, 255, 255, 0.08);
}

.iv-alarm-title small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.iv-alarm-title strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}

.iv-alarm-panel p {
    display: flex;
    margin: 0;
    padding: 28px 32px;
    align-items: center;
    color: #d6e2f3;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

/* Tablet */

@media (max-width: 991px) {
    .iv-monitor-section {
        padding: 80px 0;
    }

    .iv-monitor-section::before {
        width: 100%;
        height: 42%;
        clip-path: none;
    }

    .iv-monitor-section .container {
        padding: 0 25px;
    }

    .iv-monitor-wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .iv-monitor-visual {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .iv-monitor-section .section-heading {
        font-size: 40px;
    }

    .iv-alarm-panel {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .iv-monitor-section {
        padding: 60px 0;
    }

    .iv-monitor-section .container {
        padding: 0 20px;
    }

    .iv-monitor-wrapper {
        gap: 45px;
    }

    .iv-monitor-visual {
        padding: 0 12px 18px 0;
    }

    .iv-image-frame {
        height: 340px;
    }

    .iv-image-frame::before {
        top: 14px;
        right: -12px;
        bottom: -14px;
        left: 14px;
    }

    .iv-image-label {
        right: -5px;
        bottom: 20px;
        padding: 11px 13px;
        font-size: 11px;
    }

    .iv-monitor-index {
        top: -20px;
        left: -5px;
        font-size: 58px;
    }

    .iv-monitor-section .section-tag {
        font-size: 13px;
    }

    .iv-monitor-section .section-heading {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .iv-monitor-section .section-heading span {
        display: block;
    }

    .iv-monitor-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .iv-alarm-panel {
        margin-top: 40px;
        border-radius: 12px;
    }

    .iv-alarm-title,
    .iv-alarm-panel p {
        padding: 22px 20px;
    }

    .iv-alarm-panel p {
        font-size: 14px;
    }
}

/*====================================
IV Room Monitoring Section End
====================================*/
/*====================================
Logged Data Section Start
====================================*/

.logged-data-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.logged-data-section::before {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -210px;
    width: 480px;
    height: 480px;
    background: rgba(0, 41, 100, 0.05);
    border-radius: 50%;
}

.logged-data-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Top Area */

.logged-data-top {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 90px;
    margin-bottom: 60px;
}

.logged-data-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logged-data-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.logged-data-section .section-heading span {
    display: block;
    color: #ff3b30;
}

.logged-data-content {
    padding-left: 32px;
    border-left: 1px solid #d8e2f0;
}

.logged-data-content p {
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.logged-data-content p:last-of-type {
    margin-bottom: 24px;
}

/* Specifications Link */

.logged-specs-link {
    position: relative;
    display: inline-flex;
    padding-bottom: 5px;
    color: #002964;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.logged-specs-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #ff3b30;
    transition: 0.3s ease;
}

.logged-specs-link:hover {
    color: #ff3b30;
}

/* Device Flow */

.logged-device-flow {
    display: grid;
    grid-template-columns: 1fr 130px 1fr;
    align-items: center;
}

/* Device Card */

.logged-device-card {
    position: relative;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 41, 100, 0.1);
    transition: 0.4s ease;
}

.logged-device-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 41, 100, 0.15);
}

.device-card-header {
    display: flex;
    padding: 5px 7px 17px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #002964;
    font-size: 14px;
    font-weight: 600;
}

.device-card-header div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.device-card-header > span {
    color: #646f88;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.device-status-dot {
    width: 9px;
    height: 9px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.13);
}

/* Images */

.logged-device-image {
    position: relative;
    display: flex;
    height: 350px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f9ff;
    border-radius: 13px;
    box-sizing: border-box;
}

.device-image-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 41, 100, 0.08);
    border-radius: 50%;
    filter: blur(15px);
}

.logged-device-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-height: 310px;
    object-fit: contain;
    transition: 0.4s ease;
}

.display-device-card .logged-device-image img {
    width: 390px;
    max-width: 95%;
    filter: drop-shadow(0 18px 20px rgba(0, 41, 100, 0.15));
}

.logged-device-card:hover .logged-device-image img {
    transform: scale(1.025);
}

.device-card-footer {
    padding: 16px 8px 5px;
    color: #646f88;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

/* Data Connection */

.data-connection {
    position: relative;
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
}

.connection-line {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #aebed4 0,
        #aebed4 8px,
        transparent 8px,
        transparent 15px
    );
}

.connection-line::before,
.connection-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    background: #002964;
    border: 4px solid #eef5ff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.connection-line::before {
    left: -4px;
}

.connection-line::after {
    right: -4px;
}

.connection-line span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    background: #ff3b30;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dataTransfer 2.4s linear infinite;
}

.connection-label {
    position: relative;
    z-index: 2;
    padding: 8px 12px;
    color: #002964;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes dataTransfer {
    0% {
        left: 10%;
    }

    50% {
        left: 90%;
    }

    100% {
        left: 10%;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .logged-data-section {
        padding: 80px 0;
    }

    .logged-data-section .container {
        padding: 0 25px;
    }

    .logged-data-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .logged-data-section .section-heading {
        font-size: 40px;
    }

    .logged-device-flow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .data-connection {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .connection-line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(
            to bottom,
            #aebed4 0,
            #aebed4 8px,
            transparent 8px,
            transparent 15px
        );
    }

    .connection-line::before {
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .connection-line::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
    }

    .connection-line span {
        top: 10%;
        left: 50%;
        animation: verticalDataTransfer 2.4s linear infinite;
    }

    @keyframes verticalDataTransfer {
        0% {
            top: 10%;
        }

        50% {
            top: 90%;
        }

        100% {
            top: 10%;
        }
    }
}

/* Mobile */

@media (max-width: 600px) {
    .logged-data-section {
        padding: 60px 0;
    }

    .logged-data-section .container {
        padding: 0 20px;
    }

    .logged-data-top {
        margin-bottom: 40px;
    }

    .logged-data-section .section-tag {
        font-size: 13px;
    }

    .logged-data-section .section-heading {
        font-size: 32px;
    }

    .logged-data-content {
        padding-left: 18px;
    }

    .logged-data-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .logged-device-card {
        padding: 9px;
        border-radius: 14px;
    }

    .device-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .logged-device-image {
        height: 260px;
        padding: 10px;
    }

    .connection-label {
        font-size: 9px;
    }
}

/*====================================
Logged Data Section End
====================================*/
/*====================================
PC Backup Section Start
====================================*/

.pc-backup-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

.pc-backup-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 440px;
    height: 440px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.pc-backup-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.pc-backup-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 85px;
}

/* Content */

.pc-backup-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pc-backup-section .section-heading {
    max-width: 670px;
    margin: 0 0 28px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.pc-backup-section .section-heading span {
    display: inline;
    color: #ff3b30;
}

.pc-backup-content > p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* CFR Warning */

.backup-warning {
    display: grid;
    grid-template-columns: 42px 1fr;
    margin-top: 28px;
    padding: 20px 22px;
    align-items: center;
    gap: 15px;
    background: rgba(255, 59, 48, 0.07);
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-radius: 10px;
}

.warning-mark {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.backup-warning p {
    margin: 0;
    color: #646f88;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

/* Backup Flow */

.pc-backup-flow {
    position: relative;
    padding: 32px;
    background: linear-gradient(145deg, #002964 0%, #073f89 100%);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 41, 100, 0.2);
}

.pc-backup-flow::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 190px;
    height: 190px;
    border: 32px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

/* Flow Card */

.backup-flow-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 50px 1fr 12px;
    padding: 18px;
    align-items: center;
    gap: 17px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    transition: 0.3s ease;
}

.backup-flow-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(7px);
}

.flow-number {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
}

.flow-card-content small {
    display: block;
    margin-bottom: 5px;
    color: #b9cce7;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.flow-card-content strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.flow-status {
    width: 10px;
    height: 10px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.16);
}

.flow-status--warning {
    background: #ffc02e;
    box-shadow: 0 0 0 5px rgba(255, 192, 46, 0.16);
}

/* Connector */

.flow-connector {
    position: relative;
    z-index: 2;
    width: 2px;
    height: 32px;
    margin: 0 0 0 42px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.45) 0,
        rgba(255, 255, 255, 0.45) 5px,
        transparent 5px,
        transparent 10px
    );
}

.flow-connector span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Tablet */

@media (max-width: 991px) {
    .pc-backup-section {
        padding: 80px 0;
    }

    .pc-backup-section .container {
        padding: 0 25px;
    }

    .pc-backup-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pc-backup-section .section-heading {
        font-size: 40px;
    }

    .pc-backup-flow {
        width: 100%;
        max-width: 620px;
        box-sizing: border-box;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .pc-backup-section {
        padding: 60px 0;
    }

    .pc-backup-section .container {
        padding: 0 20px;
    }

    .pc-backup-wrapper {
        gap: 40px;
    }

    .pc-backup-section .section-tag {
        font-size: 13px;
    }

    .pc-backup-section .section-heading {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .pc-backup-content > p {
        font-size: 15px;
        line-height: 1.8;
    }

    .backup-warning {
        grid-template-columns: 36px 1fr;
        padding: 17px;
    }

    .warning-mark {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .pc-backup-flow {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .backup-flow-card {
        grid-template-columns: 42px 1fr 10px;
        padding: 14px;
        gap: 13px;
    }

    .flow-number {
        width: 42px;
        height: 42px;
    }

    .flow-card-content strong {
        font-size: 14px;
    }

    .flow-connector {
        margin-left: 34px;
    }
}

/*====================================
PC Backup Section End
====================================*/
/*====================================
IV Room Sensors Section Start
====================================*/

.iv-sensors-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.iv-sensors-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Board */

.iv-sensors-board {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: stretch;
    gap: 25px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 24px;
    box-shadow: 0 25px 65px rgba(0, 41, 100, 0.1);
}

.iv-sensors-board::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 9px;
    height: 9px;
    background: #24b26b;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(36, 178, 107, 0.13);
}

/* Content */

.iv-sensors-content {
    position: relative;
    padding: 52px 48px;
    overflow: hidden;
    background: #f8fbff;
    border-radius: 17px;
    box-sizing: border-box;
}

.iv-sensors-content::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border: 38px solid rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.iv-sensors-section .section-tag {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.iv-sensors-section .section-heading {
    position: relative;
    z-index: 2;
    margin: 0 0 28px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.iv-sensors-section .section-heading span {
    color: #ff3b30;
}

.iv-sensors-content p {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* Distance Information */

.sensor-distance {
    position: relative;
    z-index: 2;
    display: flex;
    margin-top: 30px;
    padding-top: 25px;
    align-items: center;
    gap: 18px;
    border-top: 1px solid #dfe7f3;
}

.sensor-distance > strong {
    color: #ff3b30;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.sensor-distance div > span {
    display: block;
    margin-bottom: 4px;
    color: #002964;
    font-size: 15px;
    font-weight: 700;
}

.sensor-distance small {
    display: block;
    color: #646f88;
    font-size: 12px;
    font-weight: 400;
}

/* Specifications */

.iv-sensor-specifications {
    display: grid;
    gap: 14px;
    padding: 35px 18px;
}

/* Sensor Card */

.iv-sensor-card {
    position: relative;
    padding: 23px 25px;
    overflow: hidden;
    background: #002964;
    border: 1px solid #002964;
    border-radius: 14px;
    transition: 0.35s ease;
}

.iv-sensor-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -50px;
    width: 130px;
    height: 130px;
    border: 20px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.iv-sensor-card:hover {
    background: #073f89;
    transform: translateX(-7px);
    box-shadow: 0 15px 35px rgba(0, 41, 100, 0.17);
}

.sensor-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sensor-code {
    color: #ff827a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sensor-status {
    position: relative;
    padding-left: 15px;
    color: #b9cce7;
    font-size: 11px;
    font-weight: 500;
}

.sensor-status::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    background: #24b26b;
    border-radius: 50%;
    transform: translateY(-50%);
}

.iv-sensor-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.sensor-reading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.sensor-reading strong {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.sensor-reading span {
    color: #b9cce7;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
}

/* Tablet */

@media (max-width: 991px) {
    .iv-sensors-section {
        padding: 80px 0;
    }

    .iv-sensors-section .container {
        padding: 0 25px;
    }

    .iv-sensors-board {
        grid-template-columns: 1fr;
    }

    .iv-sensors-section .section-heading {
        font-size: 40px;
    }

    .iv-sensor-specifications {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px 10px 10px;
    }

    .sensor-reading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sensor-reading span {
        text-align: left;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .iv-sensors-section {
        padding: 60px 0;
    }

    .iv-sensors-section .container {
        padding: 0 20px;
    }

    .iv-sensors-board {
        padding: 10px;
        border-radius: 16px;
    }

    .iv-sensors-content {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .iv-sensors-section .section-tag {
        font-size: 13px;
    }

    .iv-sensors-section .section-heading {
        margin-bottom: 22px;
        font-size: 32px;
    }

    .iv-sensors-section .section-heading span {
        display: block;
    }

    .iv-sensors-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .sensor-distance > strong {
        font-size: 32px;
    }

    .iv-sensor-specifications {
        grid-template-columns: 1fr;
        padding: 15px 5px 5px;
    }

    .iv-sensor-card {
        padding: 20px;
    }

    .sensor-reading {
        align-items: flex-end;
        flex-direction: row;
    }

    .sensor-reading span {
        text-align: right;
    }
}

/*====================================
IV Room Sensors Section End
====================================*/
/*====================================
No Maintenance Fees Section Start
====================================*/

.no-fees-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

.no-fees-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

.no-fees-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.no-fees-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: stretch;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #dfe7f3;
    border-radius: 20px;
    box-shadow: 0 20px 55px rgba(0, 41, 100, 0.08);
}

/* Heading */

.no-fees-heading {
    position: relative;
    display: flex;
    min-height: 350px;
    padding: 50px 42px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #002964;
    box-sizing: border-box;
}

.no-fees-heading::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    background: rgba(255, 59, 48, 0.13);
    border-radius: 50%;
}

.no-fees-section .section-tag {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 14px;
    color: #ff827a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.no-fees-section .section-heading {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.no-fees-section .section-heading span {
    display: block;
    color: #ff3b30;
}

/* Content */

.no-fees-content {
    position: relative;
    display: flex;
    padding: 55px 60px;
    align-items: center;
    background: #ffffff;
    box-sizing: border-box;
}

.no-fees-content::before {
    content: "";
    position: absolute;
    top: 55px;
    bottom: 55px;
    left: 0;
    width: 4px;
    background: #ff3b30;
}

.no-fees-content p {
    margin: 0;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

/* Tablet */

@media (max-width: 991px) {
    .no-fees-section {
        padding: 80px 0;
    }

    .no-fees-section .container {
        padding: 0 25px;
    }

    .no-fees-wrapper {
        grid-template-columns: 1fr;
    }

    .no-fees-heading {
        min-height: auto;
        padding: 45px 40px;
    }

    .no-fees-section .section-heading {
        font-size: 40px;
    }

    .no-fees-content {
        padding: 45px 40px;
    }

    .no-fees-content::before {
        top: 0;
        right: 40px;
        bottom: auto;
        left: 40px;
        width: auto;
        height: 4px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .no-fees-section {
        padding: 60px 0;
    }

    .no-fees-section .container {
        padding: 0 20px;
    }

    .no-fees-wrapper {
        border-radius: 14px;
    }

    .no-fees-heading {
        padding: 35px 24px;
    }

    .no-fees-section .section-tag {
        font-size: 13px;
    }

    .no-fees-section .section-heading {
        font-size: 32px;
    }

    .no-fees-content {
        padding: 35px 24px;
    }

    .no-fees-content::before {
        right: 24px;
        left: 24px;
    }

    .no-fees-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/*====================================
No Maintenance Fees Section End
====================================*/
/*====================================
Videos Section Start
====================================*/

.videos-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f8fbff;
}

.videos-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading */

.videos-heading {
    margin-bottom: 45px;
}

.videos-section .section-tag {
    display: block;
    margin-bottom: 14px;
    color: #ff3b30;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.videos-section .section-heading {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.videos-section .section-heading span {
    color: #ff3b30;
}

/* Video Links */

.video-links-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 41, 100, 0.08);
}

.video-link-card {
    position: relative;
    display: flex;
    min-height: 190px;
    padding: 28px 24px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #002964;
    background: #ffffff;
    border-right: 1px solid #dfe7f3;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.35s ease;
}

.video-link-card:last-child {
    border-right: 0;
}

.video-link-card::before {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -65px;
    width: 140px;
    height: 140px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
    transition: 0.35s ease;
}

.video-link-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #ff3b30;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.video-link-card:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-7px);
}

.video-link-card:hover::before {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.2);
}

.video-link-card:hover::after {
    transform: scaleX(1);
}

/* Card Content */

.video-link-number {
    position: relative;
    z-index: 2;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 700;
}

.video-link-card strong {
    position: relative;
    z-index: 2;
    max-width: 150px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.video-link-arrow {
    position: relative;
    z-index: 2;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #002964;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}

.video-link-card:hover .video-link-arrow {
    color: #ff3b30;
    background: #ffffff;
    transform: translateX(5px);
}

/* Tablet */

@media (max-width: 991px) {
    .videos-section {
        padding: 80px 0;
    }

    .videos-section .container {
        padding: 0 25px;
    }

    .videos-section .section-heading {
        font-size: 40px;
    }

    .video-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        gap: 15px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .video-link-card {
        border: 1px solid #dfe7f3;
        border-radius: 12px;
    }

    .video-link-card:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .videos-section {
        padding: 60px 0;
    }

    .videos-section .container {
        padding: 0 20px;
    }

    .videos-heading {
        margin-bottom: 35px;
    }

    .videos-section .section-tag {
        font-size: 13px;
    }

    .videos-section .section-heading {
        font-size: 32px;
    }

    .video-links-wrapper {
        grid-template-columns: 1fr;
    }

    .video-link-card,
    .video-link-card:last-child {
        grid-column: auto;
        min-height: 150px;
        padding: 22px 20px;
    }

    .video-link-card strong {
        max-width: none;
        font-size: 16px;
    }
}

/*====================================
Videos Section End
====================================*/
